home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 18 / AMIGAplus Sonderheft 18 (1999)(ICP)(DE)[!].iso / PD / Anwendungen / MicroPaint / dist / DT2IFF1.0 / Install < prev    next >
Text File  |  1999-01-03  |  714b  |  28 lines

  1. ;  *** DT2IFF installation scipt ***
  2.  
  3. (set #install-msg (cat "\n\nDT2IFF installation script.\n"
  4.      "This script installs the DT2IFF command on your Amiga.\n\n"
  5.      "DT2IFF © 1994 Markus Hillenbrand\n"
  6.      "All rights reserved."))
  7.  
  8. (set #bad-kick         "You must be using Kickstart 3.0 to install using this script!")
  9.  
  10. (message #install-msg)
  11. (welcome "Welcome to the DT2IFF installation!")
  12.  
  13. (if (< (/ (getversion) 65536) 39)((abort #bad-kick)))    
  14.  
  15. (copylib (prompt "\nInstalling DT2IFF\n")
  16.      (help @copylib-help)
  17.      (source "DT2IFF")
  18.      (dest "C:")
  19.      (confirm)
  20. )
  21.  
  22. (copyfiles (prompt "Installing DT2IFF.man\n")
  23.       (help @copy-help)
  24.       (source "DT2IFF.man")
  25.       (dest "Work:Manuals")
  26.       (confirm)
  27. )
  28.